8bb10ae34a045b7c6a178a331c7d8c15cee96ccb,src/org/yaxim/androidclient/service/GenericService.java,GenericService,setNotification,#String#String#String#String#boolean#boolean#,158
Before Change
mNotification = new NotificationCompat.Builder(this)
.setContentTitle(title)
.setContentText(message)
.setTicker(ticker)
.setSmallIcon(R.drawable.sb_message)
.setCategory(Notification.CATEGORY_MESSAGE)
.setContentIntent(pi)
After Change
mNotification = new NotificationCompat.Builder(this)
.setContentTitle(title)
.setContentText(message)
.setStyle(new NotificationCompat.BigTextStyle().bigText(message))
.setTicker(ticker)
.setSmallIcon(R.drawable.sb_message)
.setCategory(Notification.CATEGORY_MESSAGE)
.setContentIntent(pi)